*{
    padding: 0%;
    margin: 0%;

}

body{
    height: 100vh;
    width: 100%;
    background: gold;
}

.logo{
    font-size: 4vw;
    color: white;
}

.menu{
    width: 100%;
    height: fit-content;
    background: firebrick;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    position: sticky;
    top: 0;

}

.icon{
    width: 45px;
}

  

.btn{
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgb(190, 40, 40);

}

button:active{
    background: green;

}
.sub-menu{
    position: absolute;
    top: 55px;
    right: 10px;
    width: 200px;
    height: fit-content;
    display: none;
    justify-content: center;
    flex-direction: column;
    background: green;
    border-radius: 2mm;
    padding: 10px 0;
    box-shadow: 0px 5px 15px #3618df;
}

.options{
    width: 100%;
    font-family: fantasy;
    font-style: italic;
    color: aliceblue;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.4rem;
    text-align: center;
    padding: 10px 0;

}

.options:active{
    background: firebrick;
    color: black;

}



.options:active{
    background: firebrick;
    color: black;

}
h1{
    text-decoration: underline;
    margin-top: 2%;
}

p{
    font-size: 30pt;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bolder;
    text-align: center;
    margin-top: 5%;
}


.table{
    display: flex;
    justify-content: center;
}

.class-link{
    text-decoration: none;
    font-size: 25pt;
    color: black;
    margin: 10px;
    padding: 20px;
    background-color: green;
    text-transform: uppercase;
    border-radius: 10px;
    transition: 0.2s;   
}

.class-link:hover{
   color: red;
}

.class-link:active{
    color: red;
    background-color: chartreuse;
 }



.footer{
    background-color: green;
     width: 100%;
     color: white;
     margin-top: 15%;
     font-size: 1.9vw;
     
  
  }



@media(max-width:1024px){

    body{
        width: 100%;
        height: 120vh;
    }
    .menu{
        width: 100%;
        height: auto;
    }

    .table{
        flex-direction: column;
    }
    .footer{
        bottom: 0;
    }


}


@media(max-width:600px){

    body{
        width: 100%;
        height: 120vh;
    }
    .menu{
        width: 100%;
        height: auto;
    }

    .table{
        flex-direction: column;
    }
   
    .footer{
        bottom: 0;
    }


}
@media(max-width:320px){

    body{
        width: 100%;
        height: 120vh;
    }
    .menu{
        width: 100%;
        height: auto;
    }

    .table{
        flex-direction: column;
    }
    .footer{
        bottom: 0;
    }

}
